home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turnbull China Bikeride
/
Turnbull China Bikeride - Disc 2.iso
/
STUTTGART
/
COMM
/
INTERNET
/
FTP
/
SFTP
/
!sFTP
/
Scripts
/
auto
Wrap
Text File
|
1997-06-04
|
629b
|
28 lines
;
; An example scripted session for automatic use of sFTP
;
;
;
; Turn off syslogging (can also be done by providing the command line switch -V
debug 0
; Login to Deltanet running on my local machine
open localhost
; login as the user anonymous
anonymous
; supply password (our email address)
carol@nocturnal.demon.co.uk
; set the remote directory to jump to
cd /pub/k/d
; set the local directory to download to
lcd $.temp
; open the downloads directory
downloads
; turn off confirmation of overwrites
prompt
; turn off server messages
verbose
; get all the files in the current remote directory
mget * -a
; end the session
quit